home *** CD-ROM | disk | FTP | other *** search
- #ifndef GETOPT_H
- #define GETOPT_H \
- "$Id: getopt.h,v 1.1.1.1 2001/11/26 22:21:13 tboeckel Exp $"
- /*
- * Prototypes and declarations for getopt() package
- *
- * Copyright © 1994 AmiTCP/IP Group,
- * Network Solutions Development Inc.
- * All rights reserved.
- */
-
- extern int opterr;
- extern int optind;
- extern int optopt;
- extern char *optarg;
- int getopt(int argc, char * const argv[], char const *opts);
-
- #endif /* GETOPT_H */
-